home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2005 October
/
PCWOCT05.iso
/
Software
/
FromTheMag
/
XAMPP 1.4.14
/
xampp-win32-1.4.14-installer.exe
/
xampp
/
phpMyAdmin
/
libraries
/
dbg
/
setup.php
< prev
Wrap
PHP Script
|
2003-11-26
|
603b
|
21 lines
<?php
/* $Id: setup.php,v 2.3 2003/11/26 22:52:25 rabus Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:
if (isset($GLOBALS['cfg']['DBG']['enable']) && $GLOBALS['cfg']['DBG']['enable']) {
/**
* Loads the DBG extension if needed
*/
if (!@extension_loaded('dbg')) {
PMA_dl('dbg');
}
if (!@extension_loaded('dbg')) {
echo sprintf($strCantLoad, 'DBG') . '<br />' . "\n"
. '<a href="./Documentation.html#faqdbg" target="documentation">' . $GLOBALS['strDocu'] . '</a>' . "\n";
require_once('./footer.inc.php');
}
$GLOBALS['DBG'] = true;
}
?>